原文地址: here
一. clone : git clone https://github.com/laravel/la...
二. 这时我们发现 没有vendor包,运行 composer install,安装扩展包并生成 composer.lock,这个 composer.lock需提交 到代码版本控制器中,如:git; 等待执行安装完成即可(根据个人的网速不同时间不一)
三. 将 根目录下的 .env.example 文件复制一份,重命名为.env , 还放在跟.env.example 同级的目录下
四. 接下来我们将这个项目加到我们网站的根目录下,将document root 的路径指到public文件夹下,然后运行index.php即可。
五. 期间会报好几个错误,为了方便调试我们可以装一下Laravel框架开发调试工具Laravel Debugbar,
composer require barryvdh/laravel-debugbar
在config/app.php的providers中添加一行注册
Barryvdh\Debugbar\ServiceProvider::class,
如果不生效,查看一下config/app.php 中的debug是否为true
- 发现报错:
`LOG.error: RuntimeException: The only supported ciphers are AES-128-CBC and AES-256-CBC with the correct key lengths. in /Applications/MAMP/htdocs/laravel/vendor/laravel/framework/src/Illuminate/Encryption/Encrypter.php:43
Stack trace`
解决方案:
php artisan key:generate
- 接着再运行一次index.php,就能看到 laravel这个个大写的字母啦,标志着我们成功啦。
- 查看所装的 laravel 版本
php artisan --version
**粗体** _斜体_ [链接](http://example.com) `代码` - 列表 > 引用
。你还可以使用@
来通知其他用户。